home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / subsf32.zip / MANUAL.DOC < prev    next >
Text File  |  1993-04-05  |  4KB  |  117 lines

  1.  
  2.  
  3.                                     SUBSF
  4.                                  Version 3.2
  5.                                
  6.                         Copyright 1993 by Robert Prior
  7.  
  8.  
  9.      INTRODUCTION
  10.  
  11.           SUBSF is a utility written in Turbo Pascal 6.0 for Spitfire BBS.
  12.      It passes the parameters necessary for running a second copy of
  13.      Spitfire as a door from the first.  Have you ever wondered how you
  14.      could allow users to use HANDLES in adult message areas, but have them
  15.      use their REAL names in the general areas?  Spitfire does not allow
  16.      for this by default, but it can be done by using SUBSF and a second
  17.      copy of Spitfire.  The idea is to set the second SF up as a SUB-BOARD
  18.      below the MAIN board.  The caller runs the sub-board as he/she would
  19.      ANY other BBS door program.  
  20.  
  21.  
  22.      SHAREWARE
  23.  
  24.           SUBSF is Shareware.  It is not FREE.  You are invited to use it for
  25.      a trial period of not more than 14 days.  After the 14 days, if you
  26.      continue to use SUBSF, you MUST send in the registration fee.  The 
  27.      registration is a mere $10 and for registering it you are entitled to
  28.      ALL future releases at no additional charge.  Also, you will receive a
  29.      serial number which will be written to your SF log file (if the logging
  30.      option is selected).  I haven't crippled SUBSF in any way.  I'm relying
  31.      on everyone's conscience to register it if they continue using it.
  32.  
  33.  
  34.      FILES
  35.  
  36.      The archive, SUBSF32.ZIP, should contain the following files.  If any
  37.      files were missing or the file sizes are different than those listed,
  38.      do not use SUBSF and contact my BBS at (209)826-8021 for an authorized
  39.      copy.
  40.  
  41.      FILE                  SIZE          DATE
  42.      -----------------------------------------------
  43.      README.COM           1,164        04-05-93
  44.      SUBSF.CFG               31        04-05-93
  45.      SUBSF.DAT               75        04-05-93
  46.      SUBSF.EXE            6,964        04-05-93
  47.      SUBSFCFG.EXE         5,000        04-05-93
  48.      MANUAL.DOC           4,378        04-05-93     
  49.  
  50.  
  51.      INSTALLATION/OPERATION
  52.  
  53.           SUBSF is fairly simple to install.  Here are the step-by-step
  54.      instructions for installation:
  55.  
  56.      1. UNZIP SUBSF32.ZIP into a directory of its own or into Spitfire's main
  57.         system directory.
  58.  
  59.      2. Run SUBSFCFG.EXE and enter the information as prompted.  When asked,
  60.         "How many security levels", enter the total number of security
  61.         levels of your MAIN board that will have access to the sub-board.
  62.         You can set Violation Warning Ratio and Violation Enforcement Ratio
  63.         as well as MPC, MPD, DLPD and QL for each level having access to the
  64.         sub-board.  Proceed with entering the relevant data for each level.
  65.  
  66.      3. Using any text editor, edit the file, SUBSF.CFG to comply with your
  67.         particular system.  The format of SUBSF.CFG is as follows:
  68.  
  69.         Line1: Path to MAIN BBS      (ie. C:\SF)
  70.         Line2: Path to the sub-board (ie. C:\SFSUB)
  71.         Line3: Write 'YES' to have SUBSF log to CALLERS.TMP, write 'NO'
  72.                to disable logging.
  73.         Line4: Security Levels of the sub-board, one line for each.
  74.           .
  75.           .
  76.           .
  77.         Line8: Up to 10 different security levels can be configured.
  78.         
  79.      NOTE: These are security levels of your SUB-BOARD, not the MAIN board.
  80.  
  81.      4. Edit your main SF.BAT to run SUBSF.EXE.  Here's an example batch file
  82.         to run SUBSF:
  83.  
  84.      :DOOR_A
  85.         @ECHO OFF
  86.         CD\SF
  87.         SUBSF
  88.         IF ERRORLEVEL 1 GOTO LOOP
  89.         CD\SFSUB
  90.         CALL SFSUB
  91.         CD\SF
  92.         GOTO LOOP
  93.  
  94.      Here's an example of your SFSUB.BAT batch file:
  95.  
  96.      @ECHO OFF
  97.      :LOOP
  98.         C:
  99.         CD\SFSUB
  100.         CALL DOSUB
  101.         IF ERRORLEVEL 58 GOTO LOOP
  102.         IF ERRORLEVEL 57 GOTO DOOR_Z
  103.         IF ERRORLEVEL 56 GOTO DOOR_Y
  104.         .
  105.         .
  106.         (The rest of the DOOR and EVENT labels)
  107.  
  108.  
  109.      5. Add the sub-board to Spitfire's SFDOOR.MNU as you would any other
  110.         door game or program.
  111.  
  112.      That's about all there is to it.  If you run into ANY problems with
  113.      SUBSF, I will provide tech-support via my BBS.
  114.      Call me at Data-Tech BBS, (209)826-8021, USR 9600 V.32.
  115.  
  116.      
  117.